home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / msoftapp.zip / CIRCLE.H < prev    next >
C/C++ Source or Header  |  1993-06-01  |  944b  |  44 lines

  1. // circle.h : main header file for the CIRCLE application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"        // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CCircleApp:
  12. // See circle.cpp for the implementation of this class
  13. //
  14.  
  15. class CCircleApp : public CWinApp
  16. private:
  17.     CMultiDocTemplate* m_pGraphicViewTemplate;
  18.     CMultiDocTemplate* m_pTextViewTemplate;
  19.     
  20. public:
  21.     CCircleApp();
  22.  
  23. // Overrides
  24.     virtual BOOL InitInstance();
  25.     virtual CDocument* OpenDocumentFile (LPCSTR lpszFileName);
  26.  
  27. // Implementation
  28.  
  29.     //{{AFX_MSG(CCircleApp)
  30.     afx_msg void OnAppAbout();
  31.     afx_msg void OnFileNew();
  32.     //}}AFX_MSG
  33.     DECLARE_MESSAGE_MAP()
  34. };
  35.  
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38.  
  39.  
  40. //{{AFX_VBX_REGISTER()
  41.     extern UINT NEAR VBN_CLICKIN;
  42. //}}AFX_VBX_REGISTER
  43.